home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 27 / PC Gamer IT CD 27.iso / MEDIA / STORE.DXR / Internal_50_back.ls < prev    next >
Encoding:
Text File  |  1997-12-01  |  499 b   |  21 lines

  1. on mouseEnter me
  2.   cursor(280)
  3.   puppetSprite(the currentSpriteNum, 1)
  4.   set the member of sprite the currentSpriteNum to "back.roll"
  5.   set the text of field "rollover Text" to "Click here to move back."
  6. end
  7.  
  8. on mouseLeave me
  9.   cursor(-1)
  10.   puppetSprite(the currentSpriteNum, 0)
  11.   set the text of field "rollover Text" to EMPTY
  12. end
  13.  
  14. on mouseDown me
  15.   set the member of sprite the currentSpriteNum to "back.press"
  16. end
  17.  
  18. on mouseUp me
  19.   set the member of sprite the currentSpriteNum to "back.roll"
  20. end
  21.